home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / program / pdmake.arc / MAIN.C < prev    next >
C/C++ Source or Header  |  1986-12-15  |  7KB  |  263 lines

  1.     /***************************************************************\
  2.     *                                *
  3.     *  PDMAKE, Atari ST version                    *
  4.     *                                *
  5.     *  Adapted from mod.sources Vol 7 Issue 71, 1986-12-03.        *
  6.     *                                *
  7.     *  This port makes extensive use of the original net.sources    *
  8.     *  port by Jwahar Bammi.                    *
  9.     *                                *
  10.     *      Ton van Overbeek                        *
  11.     *      Email: TPC862@ESTEC.BITNET                *
  12.     *             TPC862%ESTEC.BITNET@WISCVM.WISC.EDU    (ARPA)    *
  13.     *             ...!mcvax!tpc862%estec.bitnet   (UUCP Europe)    *
  14.     *             ...!ucbvax!tpc862%estec.bitnet  (UUCP U.S.A.)    *
  15.     *             71450,3537  (CompuServe)                *
  16.     *                                *
  17.     \***************************************************************/
  18.  
  19. /*
  20.  *    make [-f makefile] [-ins] [target(s) ...]
  21.  *
  22.  *    (Better than EON mk but not quite as good as UNIX make)
  23.  *
  24.  *    -f makefile name
  25.  *    -i ignore exit status
  26.  *    -n Pretend to make
  27.  *    -p Print all macros & targets
  28.  *    -q Question up-to-dateness of target.  Return exit status 1 if not
  29.  *    -r Don't not use inbuilt rules
  30.  *    -s Make silently
  31.  *    -t Touch files instead of making them
  32.  *    -m Change memory requirements (EON only)
  33.  */
  34.  
  35. #include <stdio.h>
  36. #include "h.h"
  37.  
  38. #ifdef unix
  39. #include <sys/errno.h>
  40. #endif
  41. #ifdef eon
  42. #include <sys/err.h>
  43. #endif
  44. #ifdef os9
  45. #include <errno.h>
  46. #endif
  47. #ifdef ATARIST
  48. #include "astat.h"
  49. #endif
  50.  
  51. #ifdef eon
  52. #define MEMSPACE    (16384)
  53. #endif
  54.  
  55.  
  56. char *        myname;
  57. char *        makefile = "";        /*  The make file  */
  58. #ifdef eon
  59. unsigned        memspace = MEMSPACE;
  60. #endif
  61.  
  62. FILE *        ifd;            /*  Input file desciptor  */
  63. bool        domake = TRUE;        /*  Go through the motions option  */
  64. bool        ignore = FALSE;        /*  Ignore exit status option  */
  65. bool        silent = FALSE;        /*  Silent option  */
  66. bool        print = FALSE;        /*  Print debuging information  */
  67. bool        rules = TRUE;        /*  Use inbuilt rules  */
  68. bool        dotouch = FALSE;    /*  Touch files instead of making  */
  69. bool        quest = FALSE;        /*  Question up-to-dateness of file  */
  70.  
  71.  
  72. void
  73. main(argc, argv)
  74. int        argc;
  75. char **        argv;
  76. {
  77.     register char *    p;        /*  For argument processing  */
  78.     int            estat = 0;    /*  For question  */
  79.     register struct name *    np;
  80.  
  81. #ifdef ATARIST
  82.     myname = "make";            /*  TOS doesn't pass argv[0]  */
  83.     argc--;  argv++;
  84. #else
  85.     myname = (argc-- < 1) ? "make" : *argv++;
  86. #endif
  87.  
  88.     while ((argc > 0) && (**argv == '-'))
  89.     {
  90.         argc--;                /*  One less to process  */
  91.         p = *argv++;            /*  Now processing this one  */
  92.  
  93.         while (*++p != '\0')
  94.         {
  95.             switch(*p)
  96.             {
  97.             case 'f':            /*  Alternate file name  */
  98.             case 'F':
  99.                 if (*++p == '\0')
  100.                 {
  101.                     if (argc-- <= 0)
  102.                         usage();
  103.                     p = *argv++;
  104.                 }
  105.                 makefile = p;
  106.                 goto end_of_args;
  107. #ifdef eon
  108.             case 'm':            /*  Change space requirements  */
  109.                 if (*++p == '\0')
  110.                 {
  111.                     if (argc-- <= 0)
  112.                         usage();
  113.                     p = *argv++;
  114.                 }
  115.                 memspace = atoi(p);
  116.                 goto end_of_args;
  117. #endif
  118.             case 'n':            /*  Pretend mode  */
  119.             case 'N':
  120.                 domake = FALSE;
  121.                 break;
  122.             case 'i':            /*  Ignore fault mode  */
  123.             case 'I':
  124.                 ignore = TRUE;
  125.                 break;
  126.             case 's':            /*  Silent about commands  */
  127.             case 'S':
  128.                 silent = TRUE;
  129.                 break;
  130.             case 'p':
  131.             case 'P':
  132.                 print = TRUE;
  133.                 break;
  134.             case 'r':
  135.             case 'R':
  136.                 rules = FALSE;
  137.                 break;
  138.             case 't':
  139.             case 'T':
  140.                 dotouch = TRUE;
  141.                 break;
  142.             case 'q':
  143.             case 'Q':
  144.                 quest = TRUE;
  145.                 break;
  146.             default:    /*  Wrong option  */
  147.                 usage();
  148.             }
  149.         }
  150.     end_of_args:;
  151.     }
  152.  
  153. #ifdef eon
  154.     if (initalloc(memspace) == 0xffff)    /*  Must get memory for alloc  */
  155.         fatal("Cannot initalloc memory");
  156. #endif
  157.  
  158.     if (strcmp(makefile, "-") == 0)    /*  Can use stdin as makefile  */
  159.         ifd = stdin;
  160.     else
  161.         if (*makefile == '\0')        /*  If no file, then use default */
  162.         {
  163.             if ((ifd = fopen(DEFN1, "r")) == (FILE *)0)
  164. #ifdef eon
  165.                 if (errno != ER_NOTF)
  166.                     fatal("Can't open %s; error %02x", DEFN1, errno);
  167. #endif
  168. #ifdef unix
  169.                 if (errno != ENOENT)
  170.                     fatal("Can't open %s; error %02x", DEFN1, errno);
  171. #endif
  172. #ifdef ATARIST
  173.                 fatal("Can't open %s", DEFN1);
  174. #endif
  175. #ifdef os9
  176.                 fatal("Can't open %s", DEFN1);
  177. #endif
  178. #ifndef os9
  179. #ifndef ATARIST
  180.             if ((ifd == (FILE *)0)
  181.                   && ((ifd = fopen(DEFN2, "r")) == (FILE *)0))
  182.                 fatal("Can't open %s", DEFN2);
  183. #endif
  184. #endif
  185.         }
  186.         else
  187.             if ((ifd = fopen(makefile, "r")) == (FILE *)0)
  188.                 fatal("Can't open %s", makefile);
  189.  
  190.     makerules();
  191.  
  192.     setmacro("$", "$");
  193.  
  194.     while (argc && (p = index(*argv, '=')))
  195.     {
  196.         char        c;
  197.  
  198.         c = *p;
  199.         *p = '\0';
  200.         setmacro(*argv, p+1);
  201.         *p = c;
  202.  
  203.         argv++;
  204.         argc--;
  205.     }
  206.  
  207.     input(ifd);        /*  Input all the gunga  */
  208.     fclose(ifd);    /*  Finished with makefile  */
  209.     lineno = 0;        /*  Any calls to error now print no line number */
  210.  
  211.     if (print)
  212.         prt();        /*  Print out structures  */
  213.  
  214.     np = newname(".SILENT");
  215.     if (np->n_flag & N_TARG)
  216.         silent = TRUE;
  217.  
  218.     np = newname(".IGNORE");
  219.     if (np->n_flag & N_TARG)
  220.         ignore = TRUE;
  221.  
  222.     precious();
  223.  
  224.     if (!firstname)
  225.         fatal("No targets defined");
  226.  
  227.     circh();        /*  Check circles in target definitions  */
  228.  
  229.     if (!argc)
  230.         estat = make(firstname, 0);
  231.     else while (argc--)
  232.     {
  233.         if (!print && !silent && strcmp(*argv, "love") == 0)
  234.             printf("Not war!\n");
  235.         estat |= make(newname(*argv++), 0);
  236.     }
  237.  
  238.     if (quest)
  239.         exit(estat);
  240.     else
  241.         exit(0);
  242. }
  243.  
  244.  
  245. usage()
  246. {
  247.     fprintf(stderr, "Usage: %s [-f makefile] [-inpqrst] [macro=val ...]\
  248.  [target(s) ...]\n", myname);
  249.     exit(1);
  250. }
  251.  
  252.  
  253. void
  254. fatal(msg, a1, a2, a3, a4, a5, a6)
  255. char    *msg;
  256. {
  257.     fprintf(stderr, "%s: ", myname);
  258.     fprintf(stderr, msg, a1, a2, a3, a4, a5, a6);
  259.     fputc('\n', stderr);
  260.     exit(1);
  261. }
  262.  
  263.